home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1996 July: Mac OS SDK / Dev.CD Jul 96 SDK / Dev.CD Jul 96 SDK2.toast / Development Kits (Disc 2) / QuickTime Conferencing / Programming Stuff / Interfaces / SMRP.h < prev   
Encoding:
C/C++ Source or Header  |  1995-06-22  |  1.1 KB  |  67 lines  |  [TEXT/MPS ]

  1. /*
  2.      File:        SMRP.h
  3.  
  4.      Copyright:    © 1984-1994 by Apple Computer, Inc.
  5.                  All rights reserved.
  6.  
  7.      Warning:    *** APPLE INTERNAL USE ONLY ***
  8.                  This file may contain unreleased API's
  9.  
  10.      Version:    Built by:            anonymous
  11.                  From:                SMRP.i, revision 3, dated 10/31/94
  12.                  With Interfacer:    1.1d8
  13.  
  14.      Bugs:        Report bugs to Radar component “System Interfaces”, “Latest”
  15.                  List the version information (from above) in the Problem Description.
  16.  
  17. */
  18.  
  19. #ifndef __SMRP__
  20. #define __SMRP__
  21.  
  22.  
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26.  
  27. #if GENERATINGPOWERPC
  28. #pragma options align=mac68k
  29. #endif
  30.  
  31. #ifdef __CFM68K__
  32. #pragma lib_export on
  33. #endif
  34.  
  35.  
  36. enum {
  37.     kSMRPMaxPacketLength        = 578
  38. };
  39.  
  40. enum {
  41.     smrpPacketLengthErr            = -7701,
  42.     smrpBadStateErr                = -7702,
  43.     smrpTableFullErr            = -7703,
  44.     smrpRangeFullErr            = -7704,
  45.     smrpListFullErr                = -7705,
  46.     smrpRouteNotFoundErr        = -7706,
  47.     smrpPortNotFoundErr            = -7707,
  48.     smrpGroupNotFoundErr        = -7708,
  49.     smrpNotCreatorErr            = -7709,
  50.     smrpNoResponseErr            = -7710
  51. };
  52.  
  53.  
  54. #ifdef __CFM68K__
  55. #pragma lib_export off
  56. #endif
  57.  
  58. #if GENERATINGPOWERPC
  59. #pragma options align=reset
  60. #endif
  61.  
  62. #ifdef __cplusplus
  63. }
  64. #endif
  65.  
  66. #endif /* __SMRP__ */
  67.